.m-topper{
    background-color: #ffffff;
}

.product{
    margin: 60px;
}
.product .box{
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.product .box a{
    width: 240px;
    height: 180px;
    color: #000000;
    display: flex;
    display: -webkit-flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

.product .box a img{
    opacity: 0.6;
    transition: opacity 300ms;
    -webkit-transition: opacity 300ms;
}


.product .box a img:hover{
    opacity: 1;
}

.swiper-slide #video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    display: block;
}

.swiper-slide img{
    width: 100%;
    height: 100%;
}

.swiper-pagination-bullet{
    width: 40px;
    height: 10px;
    border-radius: 0;
    position: relative;
    background-color: inherit;
}
.swiper-pagination-bullet::before{
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: #595959;
    left: 0;
    top: calc(50% - 1.5px);
}
.swiper-pagination-bullet-active{
    position: relative;
    background-color: inherit;
}
.swiper-pagination-bullet-active::before{
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: #333333;
    left: 0;
    top: calc(50% - 1.5px);
}

.m-banner{
    display: none;
    margin-top: 50px;
}




@media screen and (max-width: 750px) {
    .product{
        margin: 30px auto;
    }
    .product .box a{
        width: 48%;
        height: 150px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 750px){
    .banner{
        display: none;
    }
    .m-banner{
        display: block;
    }
}